.course-hero {
  /* background: linear-gradient(to right, #e6e6e6, #f8f9fa); */
  background: linear-gradient(to right, #ecf4f8, #ffffff);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.course-hero-content {
  max-width: 1000px;
  margin: auto;
}

.course-hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.course-hero p {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  /* font-family: 'Verdana', Sans-serif; */
  font-family: 'Poppins', sans-serif;
}

.course-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.course-hero .btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.enroll-btn {
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  color: white;
}

.enroll-btn:hover {
  /* background: #0284c7; */
  background: #338099;
}

.details-btn {
  background-color: #e0e0e0;
  color: #1f2937;
}

.details-btn:hover {
  background-color: #d4d4d4;
}

/* =================================Part 2======================= */
.course-details-modern {
  padding: 80px 20px;
  background-color: #f9fafc;
  
  /* background: linear-gradient(to right, #ecf4f8, #ffffff); */
  font-family: 'Poppins', sans-serif;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.description-block h2 {
  font-size: 2.2rem;
  color: #1f2937;
  margin-bottom: 20px;
}

.duration {
  font-weight: 500;
  color: #2563eb;
  margin-bottom: 15px;
}

.description-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 20px;
  /* font-family: 'Verdana', Sans-serif; */
  font-family: 'Poppins', sans-serif;
  /* text-align: justify; */
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {

  background: #0947aa;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
  font-weight: 550;
  /* color: #111827; */
  color: white;
  transition: transform 0.2s;
  /* font-family: 'Verdana', Sans-serif; */
  font-family: 'Poppins', sans-serif;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}



/* ================= part 3 (syllabus) ==================== */
.weekly-syllabus {
  background: #f9fafb;
  padding: 80px 20px;
  /* font-family: 'Verdana', Sans-serif; */
  font-family: 'Poppins', sans-serif;
}

.syllabus-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 550;
  color: #1f2937;
  margin-bottom: 40px;
}

.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.week-card {

  /* background: #f2f2f2; */
  /* background: #f5a3cc; */
  background: #0947aa;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
  font-weight: 500;
  /* color: #111827; */
  color: white;
  transition: transform 0.2s;
  /* font-family: 'Verdana', Sans-serif; */
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease;
}

.week-card:hover {
  transform: translateY(-4px);
}

/* ================================ REVIEW PART ================================= */
.reviews-section {
  padding: 60px 20px;
  background-color: #f9fafb;
  text-align: center;
}

.section-heading {
  font-size: 2.2rem;
  color: #1f2937;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

.section-subheading {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-left: 4px solid #0947aa; 
  
}

.review-text {
  font-size: 1.05rem;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.review-author {
  font-size: 0.95rem;
  color: #6b7280;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
}


 /* =============================== part 5 pay & register ============================  */
 .enroll-section {
  background: #fefefe;
  padding: 60px 20px;
  border-top: 2px solid #e5e7eb;
}

.enroll-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.enroll-info h2 {
  font-size: 2.2rem;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.enroll-info .timezone {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 25px;
}

.enroll-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.enroll-details li {
  font-size: 1.05rem;
  color: #374151;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-family: 'Poppins', sans-serif;
}

.enroll-call p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #111827;
  font-family: 'Poppins', sans-serif;
}

.enroll-now,
.pay-confirm {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.enroll-now {
  /* background: linear-gradient(to right, #ec4899, #8b5cf6); */
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  font-family: 'Poppins', sans-serif;
}

.enroll-now:hover {
  /* background: #9333ea; */
  background: #1e40af;
}

.pay-confirm {
  background: #2563eb;
  font-family: 'Poppins', sans-serif;
}

.pay-confirm:hover {
  background: #1e40af;
}


/* ===================================== FAQ ===================================== */
.faq-section {
  background-color: #f9f9ff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-section .container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.faq-item h4 {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.faq-item p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}



/* ======================== DIVEDER==================== */

.wave-divider {
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
  background: none;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}




